home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ansi / qwikansi.zip / QWIKSCRN.DOC < prev   
Text File  |  1986-10-12  |  5KB  |  109 lines

  1.  
  2.  
  3.  
  4.  
  5.                        QWIK Screen  -  Video I/O Routines.
  6.                        (C) Copyright by Michael J. Acker.
  7.                          MJA Software      May 24, 1986
  8.  
  9.  
  10.  
  11.  
  12.          DESCRIPTION:
  13.  
  14.              QWIK Screen is a resident program that replaces the Video
  15.          Bios routines on the IBM-PC.  The main purpose of Qwik screen
  16.          is for faster screen updates in the text mode.   This program
  17.          will support the graphics modes with only a small degradation
  18.          in performance.  But, if your applications require exstensive
  19.          use of the graphics display modes then Qwik screen is not the
  20.          video updating program that you're looking for.  For those of
  21.          you who use your IBM-PC in the text mode the majority of the
  22.          time, you will notice a substantial increase in the speed at
  23.          which Qwik screen updates your video.
  24.  
  25.              Without the device driver Ansi.sys installed you will see
  26.          an increase of  10 to 60 % in video performance depending on
  27.          each individual application.   PC-DOS makes use of the Bios
  28.          TTY function to update the screen.   The IBM Bios can update
  29.          the screen at the rate of approx  550 characters per second,
  30.          where as the faster code contained in Qwik screen will update
  31.          at the rate of approx 1000 characters per second.
  32.  
  33.              With the device driver Ansi.sys installed you will see an
  34.          increase of  5 to 40 % in video performance depending on each
  35.          individual application.   The Ansi.sys device driver makes use
  36.          of the position cursor and write character functions of the
  37.          Bios to update the screen.  Using these two functions of the
  38.          Bios the screen is updated at the rate of approx. 600 characters
  39.          per second, where as the faster code contained in Qwik screen
  40.          will update the screen at the rate of approx 800 characters per
  41.          second.  Ansi.sys takes some of the screen updating functions
  42.          away from the Bios; therefore Qwik screen can not give the same
  43.          increase in performance as seen when Ansi.sys is not installed.
  44.  
  45.  
  46.              If you find this program beneficial and use it all then a
  47.          suggested contribution of $ 5.00 would be greatly appreciated.
  48.          I have other Bios enhancement routines available for the IBM
  49.          PC and compatables.
  50.  
  51.          1)  An interrupt driven printer routine with up to 64k buffer.
  52.  
  53.          2)  A keyboard enhancement routine that allows for a 256
  54.              character keyboard buffer and speeded key repeat.
  55.  
  56.          3)  An enhanced print screen program that when used with any
  57.              print spooler will make the print screen instantaneous.
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.              If you are interested in any of these other programs or
  65.          wanted to send your contribution immediately.  Please direct
  66.          your correspondence to:
  67.  
  68.                              MJA Software
  69.                              Michael J. Acker
  70.                              4206-45th Street
  71.                              Lubbock, Texas  79413
  72.  
  73.          USAGE:
  74.  
  75.              Qwik screen replaces the Bios routines, now contained in ROM,
  76.          on your IBM-PC; therefore, Qwik screen must be resident before
  77.          any other programs that "hook" themselves to the Bios interrupt
  78.          vectors for video I/O.  A good time to load Qwik screen is upon
  79.          bootup in your Autoexec.bat.  The following is a description of
  80.          how to invoke Qwik screen and make use of the available options.
  81.  
  82.              QWIKSCRN      -  Simply loads and becomes resident replacing
  83.                               the current video bios routines contained
  84.                               in ROM.  Users with an IBM Color/graphics
  85.                               board may experience glitches during screen
  86.                               scrolling but this can be elimated with the
  87.                               /C option.
  88.  
  89.              QWIKSCRN /C   -  This option makes Qwik screen compatable
  90.                               with the bios routines for scrolling the
  91.                               screen on a color monitor.
  92.  
  93.              QWIKSCRN /B   -  This option causes the cursor to be changed
  94.                               to a blinking block instead of an underline.
  95.  
  96.              QWIKSCRN /F   -  This option will give another 10 % increase
  97.                               in performance by use of a different cursor
  98.                               positioning routine contained in Qwik screen.
  99.                               Some applications turn the cursor off for
  100.                               strictly cosmetic appearences, so this
  101.                               option may cause cosmetic results that are
  102.                               displeasing and therefore should not be used.
  103.  
  104.              Any combination of these options can be used when Qwik screen
  105.          is invoked but for ease of parsing the command line they must be
  106.          each seperated by a backslash.  (ex. QWIKSCRN /C/B/F)
  107.  
  108.  
  109.